instruction register - перевод на Английский
Diclib.com
Словарь онлайн

instruction register - перевод на Английский

REGISTER IN A CPU CONTROL UNIT HOLDING THE CURRENTLY-EXECUTING INSTRUCTION

instruction register         

общая лексика

IR

регистр команд

регистр процессора, содержащий исполняемую в текущий момент команду

Смотрите также

fetch cycle; instruction; register

current instruction         
  • Front panel of an [[IBM 701]] computer introduced in 1952. Lights in the middle display the contents of various registers. The '''instruction counter''' is at the lower left.
PROCESSOR REGISTER THAT INDICATES THE LOCATION IN MEMORY OF THE CURRENTLY-EXECUTING INSTRUCTION IN THE BINARY CODE OF A PROGRAM
Instruction pointer; Program Counter; Program register; Instruction address register; Programme counter; Instruction counter; Next instruction pointer; Current instruction pointer; Current instruction; Next instruction; Next instruction address; Next instruction pointer register; Instruction pointer register; Next instruction address register

вычислительная техника

текущая команда

program counter         
  • Front panel of an [[IBM 701]] computer introduced in 1952. Lights in the middle display the contents of various registers. The '''instruction counter''' is at the lower left.
PROCESSOR REGISTER THAT INDICATES THE LOCATION IN MEMORY OF THE CURRENTLY-EXECUTING INSTRUCTION IN THE BINARY CODE OF A PROGRAM
Instruction pointer; Program Counter; Program register; Instruction address register; Programme counter; Instruction counter; Next instruction pointer; Current instruction pointer; Current instruction; Next instruction; Next instruction address; Next instruction pointer register; Instruction pointer register; Next instruction address register

общая лексика

PC

счётчик команд, программный счётчик

внутренний регистр процессора, содержащий адрес следующей выбираемой команды либо следующего байта [слова] программы

синоним

instruction counter; instruction pointer; address register

Определение

program counter
<hardware> (PC, or "instruction address register") A register in the central processing unit that contains the addresss of the next instruction to be executed. The PC is automatically incremented after each instruction is fetched to point to the following instruction. It is not normally manipulated like an ordinary register but instead, special instructions are provided to alter the flow of control by writing a new value to the PC, e.g. JUMP, CALL, RTS. (1995-03-21)

Википедия

Instruction register

In computing, the instruction register (IR) or current instruction register (CIR) is the part of a CPU's control unit that holds the instruction currently being executed or decoded. In simple processors, each instruction to be executed is loaded into the instruction register, which holds it while it is decoded, prepared and ultimately executed, which can take several steps.

Some of the complicated processors use a pipeline of instruction registers where each stage of the pipeline does part of the decoding, preparation or execution and then passes it to the next stage for its step. Modern processors can even do some of the steps out of order as decoding on several instructions is done in parallel.

Decoding the op-code in the instruction register includes determining the instruction, determining where its operands are in memory, retrieving the operands from memory, allocating processor resources to execute the command (in super scalar processors), etc.

The output of the IR is available to control circuits, which generate the timing signals that control the various processing elements involved in executing the instruction.

In the instruction cycle, the instruction is loaded into the instruction register after the processor fetches it from the memory location pointed to by the program counter.